home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 2 / Mac Magazin and MacEasy Magazine CD - Issue 02.iso / Sharewarebibliothek / Applikationen / Alpha.5.81 folder / Help / Customizing < prev    next >
Text File  |  1994-03-08  |  920b  |  24 lines

  1.  
  2. Alpha is customizable in many ways, including:
  3.  
  4. • Any Tcl phrase can be bound to any keystroke.
  5.  
  6. • Many of Alpha's functions are implemented in Tcl (Ousterhout's Tool 
  7.   Command Language). All of these functions can be changed at will.
  8.  
  9. • :userStartup.tcl is now loaded at startup, after everything has been 
  10.   completed. However, much of Alpha's tcl code is dynamically loaded when 
  11.   it is referenced, along w/ definitions that are needed by the 
  12.   application. Therefore, if you redefine 'setCMode' in userStartup.tcl, 
  13.   for instance, you must be sure to load the file containing the original 
  14.   version of 'setCMode' before you redefine it. In this case, you would 
  15.   just include the following line at the top of your 'userStartup.tcl' 
  16.   file:
  17.   
  18.       source ":Tcl:SystemCode:c.tcl"
  19.  
  20. • All of Alpha's menus except the first three are created from Tcl.
  21.  
  22. • Alpha's "modes"s are almost entirely written in Tcl code.
  23.  
  24.